@import url(reset.css);
@import url(normalize.css);
@import url(class.css);
/* img,
a,
i {
  transition: all 0.5s ease 0s;
} */
body {
  width: 100%;
}
.row {
  margin: 5px 0;
  width: 100%;
}
.row [class*='col-'] {
  float: left;
}
.col-md-6 {
  width: 50%;
}
.col-md-8 {
  width: 66.6%;
}
.col-md-4 {
  width: 33.3%;
}
.w1400 {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
.w1400::after {
  content: '';
  height: 0;
  display: block;
  clear: both;
  visibility: hidden;
}
.menu-btn {
  display: none; /* 在电脑端隐藏 */
}
.find_inputBlock {
  display: flex;
  align-items: center;
}

.find_inputText {
   width: 111px;
  height: 30px;
	margin-top: 35px;
  margin-right: -1px;
  margin-left: auto;
  flex: 1;
}
.find_searchButton {
	margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-image:linear-gradient(0deg, #005ba2 0%, #0076d1 100%);
  background-size: cover; /* 适应按钮尺寸 */
  border: none; /* 移除按钮边框 */
  cursor: pointer; /* 设置光标为手型 */
}

.find_searchButton img {
  width: 63%;
  height: auto;
}


.row_skyblue {
  width: 100%;
  background-color: #f3faff;
  padding: 35px 0;
}
.bg_deepblue {
  background-image: linear-gradient(0deg, #005ba2 0%, #0076d1 100%);
}
.bg_blue {
  background-image: linear-gradient(0deg, #0064b2 0%, #6bbeff 100%);
}
.shadow {
  box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.1);
}
.img_border_box {
  box-sizing: border-box;
  width: 100%;
  border: solid 2px #ededed;
  padding: 10px;
  text-align: center;
}
.img_border_box img {
  box-sizing: border-box;
  width: 100%;
  height: 250px;
}
.img_border_box span {
  display: none;
    width: 100%;
    height: 30px;
    line-height: 30px;
    margin-top: -30px;
    background: rgba(27,128,210,0.5);
    color: #fff;
    text-align: center;
    position: relative;
}
.img_border_box:hover span {
  display: block;
}
.title_box1 h3 {
  position: relative;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 30px;
}
.title_box1 h3 > a {
  display: inline-block;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  padding-bottom: 15px;
  border-bottom: 6px solid #005fa8;
}
.title_box1 h3 > a img {
  width: 35px;
  height: 35px;
  margin-right: 15px;
}
.title {
  text-align: center;
  padding: 50px 0;
  font-size: 28px;
  color: #000000;
}
.title.dbxm {
  padding: 20px 0;
}
.more {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #666;
}
.more a {
  font-size: 16px;
  color: #666666;
}
.more a:hover {
  color: #005fa8;
}
.newslist {
  width: 100%;
}
.newslist .hd {
  width: 100%;
  height: 60px;
  background-color: #f6f6f6;
  border-radius: 10px;
}
.newslist .hd li {
  position: relative;
  float: left;
  width: 30%;
  height: 60px;
  cursor: pointer;
  text-align: center;
  line-height: 60px;
  border-radius: 10px;
  transition: all 0.3s ease 0s;
}
.newslist .hd li::after {
  width: 100%;
  height: 0;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, #005ba2 0%, #0076d1 100%);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.newslist .hd li a {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  z-index: 2;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.newslist .hd li.on a {
  color: #fff;
}
.newslist .hd li.on::after {
  height: 100%;
}
.newslist .bd li {
  position: relative;
  margin-top: 27px;
}
.newslist .bd li i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #4d83fa;
  transition: all 0.5s ease 0s;
}
.newslist .bd li img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: all 0.5s ease 0s;
}
.newslist .bd li a {
  margin-left: 30px;
  width: 80%;
  font-size: 18px;
  color: #333333;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s ease 0s;
}
.newslist .bd li a:hover {
  color: #005fa8;
}
.newslist .bd li span {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 18px;
  color: #999999;
}
.newslist .bd li:hover img {
  left: 10px;
}
.newslist .bd li:hover i {
  width: 15px;
  height: 5px;
  border-radius: 0%;
  background-color: #ffbb37;
}
.newslist .bd li:hover a {
  padding-left: 10px;
}
.newslist_box2 :nth-child(-n + 2).newslist2 {
  margin-right: 4%;
}
.newslist2 {
  float: left;
  width: 30%;
}
.newslist2 .hd {
  position: relative;
  width: 100%;
  height: 50px;
}
.newslist2 .bd li {
  position: relative;
  margin-top: 25px;
}
.newslist2 .bd li i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #949494;
  transition: all 0.5s ease 0s;
}
.newslist2 .bd li a {
  margin-left: 15px;
  font-size: 18px;
  color: #333333;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s ease 0s;
}
.newslist2 .bd li a:hover {
  color: #005fa8;
}
.newslist2 .bd li:hover i {
  width: 15px;
  height: 5px;
  border-radius: 0%;
  background-color: #ffbb37;
}
.newslist2 .bd li:hover a {
  margin-left: 25px;
}
.article_box {
  padding: 20px;
}
.article_box h3 {
  font-size: 28px;
  font-weight: bold;
  color: #333333;
  text-align: center;
  line-height: 60px;
}
.article_box .info {
  line-height: 40px;
  border-top: solid 1px #e0e0e0;
  border-bottom: solid 1px #e0e0e0;
}
.article_box .article p {
  margin: 2em 0;
}
.info p {
  display: inline-block;
  font-size: 16px;
  color: #666666;
  text-align: center;
  margin-right: 30px;
}
.info p img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.article img {
  position: relative;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  width: 600px;
  max-width: 90%;
}
.article p , .article div {
  font-size: 16px;
  line-height: 30px;
  /* text-indent: 2em; */
}
.article_zzzy p {
  font-size: 17px;
  line-height: 2.3;
  text-indent: 2em;
}
.article_zzzy img,.article_zzzy video {
  position: relative;
  max-width: 1200px;
  text-align: center;
}
.data_box {
  width: 100%;
  height: 160px;
  border: solid 1px #dbdbdb;
  padding: 50px 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
}
.data {
  color: #333;
}
.data p:nth-child(1) {
  font-size: 15px;
  text-align: center;
}
.data p:nth-child(2) {
  font-size: 14px;
  text-align: center;
}
.data strong {
  font-size: 34px;
  font-weight: normal; 
  color: #ff821d;
}
.data strong i {
  font-style: normal;
}
.spirit_sm {
  margin-bottom: 20px;
}
.spirit_sm img{
  width: 680px;
}
.subject_box {
  display: block;
  width: 100%;
  padding-top: 35px;
  overflow: hidden;
}
.subject_box img {
  width: 100%;
  height: 258px;
  transition: all 0.5s ease 0s;
}
.subject_box .text {
  padding: 50px 120px 40px 30px;
}
.subject_box .text h4 {
  font-size: 22px;
  color: #000000;
  margin-bottom: 30px;
  transition: all 0.5s ease 0s;
}
.subject_box .text p {
  font-size: 16px;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.subject_box .text p img {
  width: 25px;
  height: 20px;
  margin-right: 15px;
  margin-bottom: 5px;
  transition: all 0.5s ease 0s;
}
.subject_box:hover img {
  transform: scale(1.05);
}
.subject_box:hover h4 {
  color: #0069ba;
}
.subject_box:hover .text p img {
  transform: rotateY(360deg);
}
.recommend {
  position: relative;
  margin-top: 78px;
}
.recommend .recommend_title {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: #fff;
  font-size: 20px;
  font-weight: bold;
  color: #333333;
}
.recommend .recommend_con {
  width: 100%;
  padding: 20px 25px 0 25px;
  border: solid 2px #eaecef;
}
.recommend .recommend_con li {
  position: relative;
  margin-top: 20px;
}
.recommend .recommend_con li:nth-last-child(1) div {
  border-bottom: none;
}
.recommend .recommend_con li:hover img {
  transform: rotateY(360deg);
}
.recommend .recommend_con img {
  position: absolute;
  top: 2px;
  left: 0;
  transition: all 0.5s ease 0s;
}
.recommend .recommend_con div {
  margin-left: 30px;
  padding-bottom: 10px;
  border-bottom: dashed 1px #e5e5e5;
}
.recommend .recommend_con div a {
  font-size: 16px;
  color: #333333;
}
.recommend .recommend_con div a:hover {
  color: #005fa8;
}
.recommend .recommend_con div p {
  margin-top: 15px;
  font-size: 14px;
  color: #999999;
}
.tab_box {
  height: auto;
}
.tab_box .tab_title_box {
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 366px;
  height: 100%;
  background-color: #eeeeee;
  text-align: center;
}
.tab_box .tab_cur {
  display: flex;
  position: absolute;
  top: 0;
  width: 100%;
  height: 85px;
  text-align: left;
	align-items: center;
  line-height: 35px;
}
.tab_box .tab_cur span {
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
	margin-left: 20px;
}
.tab_box .tab_cur img {
  width: 22px;
  height: 22px;
  margin-left: 30px;

}
.tab_box .tab_list {
  overflow: hidden;
  margin-top: 100px;
}
.tab_box .tab_list .tab_title:not(.active_nav) a {
	color: #7d8392;
}
.tab_box .tab_list .active_nav a, .tab_box .tab_list .tab_title:hover a{
	color: #0d68ae;
}
.tab_box .tab_list .tab_title {
  display: inline-block;
  box-sizing: border-box;
  width: 325px;
  height: 60px;
  background-color: #fff;
  margin-bottom: 10px;
  padding-left: 16px;
  text-align: left;
  line-height: 60px;
  font-size: 18px;
  color: #7d8392;
  cursor: pointer;
}
.tab_box .tab_list .tab_title_child {
  display: inline-block;
  box-sizing: border-box;
  width: 317px;
  height: 40px;
  background-color: #ddd;
  margin-bottom: 10px;
  padding-left: 15px;
  text-align: left;
  line-height: 40px;
  font-size: 16px;
  color: #7d8392;
  cursor: pointer;
}
.tab_box .tab_list .tab_title_child.active_tab_title_child {
  color: #3333b7;
}
.tab_box .tab_list .active_nav {
  border-left: 4px solid #0d68ae;
  color: #0d68ae;
  font-weight: bold;
  transition: all 0.3s;
}
.tab_box .tab_list .tab_title:hover {
  border-left: 4px solid #0d68ae;
  color: #0d68ae;
  font-weight: bold;
  transition: all 0.3s;
}
.tab_box .tab_con {
  background-color: #fff;
  min-height: 960px;
  margin-left: 366px;
  width: calc(100% - 366px);
  padding: 30px 40px;
}
.tab_box .tab_con .bd li {
  line-height: 55px;
  border-bottom: dashed 1px #e5e5e5;
}
/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµ */
.pagination {
  display: block;
  text-align: center;
}
.pagination ul {
  margin: 0 auto;
  padding: 10px 0;
  display: inline-block;
}
.pagination li {
  display: inline;
  margin: 0 3px;
  color: #333;
}
.pagination li a {
  display: inline-block;
  padding: 0 15px;
  line-height: 40px;
  border: solid 1px #e2e2e2;
  color: #333;
}
.pagination li a:hover {
  background-color: #005ba2;
  color: #ffffff;
}
.pagination li a.current {
  background-color: #005ba2;
  border-color: #005ba2;
  color: #ffffff;
  cursor: default;
}
.pagination li a.disable {
  cursor: not-allowed;
  color: #999999;
}
.pagination li a.disable {
  cursor: not-allowed;
  color: #999999;
}
.pagination li span {
  margin: 0 3px;
}
.pagination li input {
  box-sizing: content-box;
  width: 40px;
  height: 40px;
  border: solid 1px #e2e2e2;
  outline: 0;
  text-align: center;
}
header {
  position: relative;
  width: 100%;
}
.header_box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
}
.header_box .header_nav {
  width: 100%;
  height: 100px;
  background-color: rgba(255,255,255,0.8);
}
.header_box .header_nav .logo_box,
.header_box .header_nav .nav_list,
.header_box .header_nav .util_box {
  line-height: 100px;
}
.header_box .header_nav .nav_list {
  margin-left: 20px;
}
.header_box .header_nav .nav_list .nav_list_title {
  display: inline-block;
  padding: 0 20px;
  font-size: 18px;
  color: #333333;
}
.header_box .header_nav .nav_list .nav_list_title_cur {
  font-weight: bold;
}
.header_box .header_nav .util_box {
  float: right;
}
.header_box .header_nav .util_box div {
  display: inline-block;
  height: 32px;
  text-align: center;
  line-height: 32px;
}
.header_box .header_nav .util_box .oa {
  width: 97px;
  border: solid 1px #666666;
  margin-right: 10px;
  position: relative;
}
.header_box .header_nav .util_box .oa.cur {
  left: -250px;
}
.header_box .header_nav .util_box .oa a {
  font-size: 16px;
  color: #333;
}
.head_icon {
  transform: translateY(-2px);
  width: 54px;
  height: 32px;
  border-radius: 16px;
  border: none;
  z-index: 99999;
  cursor: pointer;
  background-image: linear-gradient(0deg, #005ba2 0%, #0076d1 100%);
}
.header_box .header_nav .util_box .find_inputBlock {
  position: absolute;
  right: 35px;
  top: 35px;
  width: 185px;
  overflow: hidden;
}
/* .head_block:hover .find_inputBlock {
  width: 258px !important;
} */
.header_box .header_nav .util_box input.find_inputText {
  position: relative;
  height: 31px;
  outline: none;
  padding-left: 3px;
  width: 260px;
  background: #fff;
  border: 1px solid #31708f;
  border-radius: 2px;
  padding-right: 11px;
  display: block;
}
.header_box .header_nav .util_box .search_box button {
  transform: translateY(-2px);
  width: 54px;
  height: 32px;
  border-radius: 16px;
  border: none;
}
.header_box .header_nav_transparent {
  background-color: rgba(255, 255, 255, 0.8);
}
.header_box .header_nav_sec {
  position: absolute;
  width: 100%;
  height: 45px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.header_box .header_nav_sec ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header_box .header_nav_sec ul:nth-child(7) {
  width: 900px;
  left: 53%;
}

.header_box .header_nav_sec ul li {
  float: left;
  margin-right: 40px;
}
.header_box .header_nav_sec ul li a {
  font-size: 16px;
  color: #fff;
}
footer {
  padding: 0px 0;
  background-color: #005da5;
	margin-top:50px;
}
@media screen and (max-width: 767px) {
footer {
  padding: 0px 0;
  background-color: #005da5;
	margin-top:0px;
}
}
footer .links > ul > li {
  float: left;
  position: relative;
  width: 30%;
  height: 50px;
  line-height: 50px;
  background: #e6eff6;
  margin-right: 5%;
  text-align: center;
  cursor: pointer;
}
footer .links > ul > li > a {
  font-size: 18px;
  color: #333333;
}
footer .links > ul > li > a::after {
  content: '';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  background: url(../image/foot_link_arrow.png);
  width: 11px;
  height: 7px;
}
footer .links li ul {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid #ddd;
  background-color: #fff;
  transition: all 0.3s;
  opacity: 0;
}
footer .links li li {
  border-top: 1px solid #ddd;
  line-height: 39px;
  text-align: center;
  transition: all 0.3s;
}
footer .copyright_box,
footer .ewm_box {
  margin-top: 20px;
}
footer .copyright_box p,
footer .ewm_box p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
footer .copyright_box {
  margin-right: 5%;
  width: 65%;
  padding: 0px 0 20px 0px;
}
footer .copyright_box span {
  margin-right: 20px;
}
footer .ewm_box {
  width: 30%;
  padding: 20px 0px;
}
.top_banner img {
  width: 100%;
}
.position {
  width: 100%;
  border-bottom: 1px solid #dbdbdb;
}
.position .fl .cur_title {
  width: 240px;
  height: 70px;
  text-align: center;
  line-height: 70px;
}
.position .fl .cur_title img:nth-child(1) {
  width: 27px;
  height: 34px;
  vertical-align: text-bottom;
  margin-right: 10px;
}
.position .fl .cur_title span {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
}
.position .fl .cur_title img:nth-child(3) {
  margin-left: 30px;
  margin-bottom: 8 px;
}
.position .fl .cur_list a {
  margin-left: 30px;
  line-height: 70px;
  font-size: 18px;
  color: #333333;
}
.position .fl .cur_list a:hover {
  color: #0069ba;
}
.position .fl .cur_list .cur {
  color: #0069ba;
}
.position .fr {
  line-height: 70px;
}
.position .fr img {
  margin-right: 7px;
  margin-bottom: 5px;
}
.position2 {
  border: none;
  line-height: 60px;
}
.index_row1 {
  position: relative;
  height: 80px;
}
.index_row1 .img_box {
  position: absolute;
  top: 0%;
  left: 0;
  width: 200px;
  height: 70px;
  text-align: center;
  line-height: 70px;
}
.index_row1 .img_box img {
  width: 145px;
}
.index_row1 .text_box {
  margin-left: 200px;
  margin-top: 26px;
}
.index_row1 .text_box h3 a {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index_row1 .text_box h3 a:hover {
  color: #005fa8;
}
.index_row1 .text_box p {
  margin-top: 20px;
  font-size: 18px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index_row2 {
  width: 100%;
  height: 395px;
}
.index_row2 .img_box {
  position: relative;
}
.index_row2 .img_box img {
  width: 100%;
}
.index_row2 .img_box .mask {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 52px;
  background-color: rgba(0, 0, 0, 0.5);
}
.index_row2 .img_box .mask a {
  margin-left: 20px;
  line-height: 52px;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index_row3 {
  position: relative;
}
.index_row4 .four-text-box {
	text-align: center;
	margin:auto;
  height: 400px;
}
.index_row4 .four-text-box ul {
    width: 100%;
    float: left;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: hidden;
}
.index_row4 .four-text-box ul li {
    width: 293.5px;
    height: 6.1rem;
    float: left;
    margin-left: 0.1rem;
    background: #fff;
    -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.05);
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.05);
    position: relative;
}
.index_row4 .four-text-box ul li:first-child {
    margin-left: 0rem;
}

.index_row4 .four-text-box .hover-01:hover{
	background-size:cover;

  background-image: url("/webfile/image/service_1.png");
	background-repeat: no-repeat;
}
.index_row4 .four-text-box .hover-02:hover{
	background-size:cover;

  background-image: url("/webfile/image/service_2.png");
	background-repeat: no-repeat;
}
.index_row4 .four-text-box .hover-03:hover{
	background-size:cover;

  background-image: url("/webfile/image/service_3.png");
	background-repeat: no-repeat;
}
.index_row4 .four-text-box .hover-04:hover{
	background-size:cover;

  background-image: url("/webfile/image/service_4.png");
	background-repeat: no-repeat;
}

.index_row4 .four-name,.index_row4 .four-text,.index_row4 .four-more {
    width: 100%;
    padding: 0rem 0.28rem 0rem 0.28rem;
	
    overflow: hidden;
    float: center;
}
.index_row4 .position-con {
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 999;
    width: 100%;
    height: 6.1rem;
    overflow: hidden;
}
.index_row4 .four-name .f-name-img {
    width: 100%;
    height: 1.04rem;
    text-align: left;
    margin-top: 0.3rem;
}
.index_row4 .four-name .f-name-img img {
    width: 1.04rem;
    height: 1.04rem;
}
.index_row4 .four-name .f-name-img .img02 {
    display: none;
    opacity: 0;
    width: 1.04rem;
    height: 1.04rem;
    transition: all 700ms ease;
}
.index_row4 .four-name p {
    font-size: 0.2135rem;
    padding: 0.09rem 0rem;
    margin-top: 0.13rem;
    color: #222222;
    text-align: left;
    position: relative;
}
.index_row4 .four-name p:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    display: block;
    width: 0.32rem;
    height: 0.03rem;
    background: #f3f3f3;
}
.index_row4 .four-text {
    height: 3.6rem;
    overflow: hidden;
    float: left;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    line-height: 0.36rem;
    font-size: 0.18rem;
    color: #022222;
    text-align: justify;
    text-indent: 2em;
    border-bottom: solid 1px #e8e8e8;
}

.index_row4 .four-more span {
    display: block;
    width: 1.3rem;
    height: 0.5rem;
    float: left;
    font-size: 0.16rem;
    line-height: 0.5rem;
    text-align: left;
    -webkit-background-size: 15%;
    background-size: 15%;
}
.index_row4 .four-more span a {
    display: block;
    width: 100%;
    height: 100%;
}
.index_row4 .position-img {
    display: none;
    position: absolute;
    left: 0rem;
    top: 0rem;
    z-index: -1;
    width: 100%;
    height: 4.8rem;
    overflow: hidden;
    transition: all 3s;
}
.index_row4 .position-img img {
    width: 100%;
    height: 100%;
}


.index_row4 .four-text-box ul li:hover .four-text {
    border-bottom: solid 1px #3572a6;
}
.index_row4 .four-text-box ul li:hover .f-name-img .img01 {
    display: none;
    opacity: 0;
}
.index_row4 .four-text-box ul li:hover .f-name-img .img02 {
    display: block;
    opacity: 1;
    transition: all 700ms ease;
}
.index_row4 .four-text-box ul li:hover .four-name p {
    color: #fff;
}
.index_row4 .four-text-box ul li:hover .four-text {
    color: #fff;
}
.index_row4 .four-text-box ul li:hover .four-more span a {
    color: #e9340b;

}

.index_row4 .four-text-box ul li .four-more:hover span a {
    letter-spacing: 1px;
    transition: all 1s;
}

.index_row4 .four-text-box ul li .position-con:after {
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #fff;
}
.index_row4 .four-text-box ul li .position-con:hover:after {
    opacity: 0;
}
.index_row4 .four-text-box ul li .position-con:before {
    content: '';
    display: block;
    opacity: 0;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    transition: all 1s;
}

.index_row4 .four-text-box ul li .position-con:hover:before {
    transform: scale(1.2);
    display: block;
    opacity: 1;
}
.index_row6 {
  margin-bottom: 0;
}
.index_row6 video {
  object-fit: cover;
}
.index_row6 .box {
  width: 48%;
  margin-top: 25px;
}
.index_row6 .box a {
  display: inline-block;
  width: 100%;
  height: 98px;
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  line-height: 98px;
}
.index_row6 .box a img {
  width: 70px;
  height: 70px;
  margin-left: 85px;
  transition: all 0.5s ease 0s;
}
.index_row6 .box a:hover img {
  transform: rotate(360deg);
}
.index_row6 .box2 img {
  width: 100%;
  height: 152px;
  transition: all 0.5s ease 0s;
}
.index_row6 .box2 img:nth-child(-n + 2) {
  margin-bottom: 29px;
}
.index_row6 .box2 img:hover {
  transform: scale(1.05);
}
.culture_video {
  height: 412px;
}
.culture_video video {
  height: 412px;
}
.culture_video .text_box {
  height: 100%;
  padding: 55px;
  color: #fff;
}
.culture_video .text_box h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}
.culture_video .text_box .text_box_inner {
  display: block;
  height: 263px;
  overflow-y: auto;
}
.culture_video .text_box .text_box_inner::-webkit-scrollbar {
  width: 3px;
  background-color: transparent;
}
.culture_video .text_box .text_box_inner:hover::-webkit-scrollbar-thumb {
  background-color: #044475;
}
.index_banner_swiper {
  top: 100px;
  width: 100%;
}

/* 在小屏幕设备上覆盖样式 */
@media screen and (max-width: 767px) {
  .index_banner_swiper {
     top:0;
  }
}
.index_banner_swiper img {
  width: 100%;
}
.index_banner_swiper .swiper-button-prev,
.index_banner_swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 73px;
  height: 74px;
}
.index_banner_swiper .swiper-button-prev {
  background: url(../image/hover_left.png);
}
.index_banner_swiper .swiper-button-next {
  background: url(../image/hover_right.png);
}
.index_banner_swiper .swiper-pagination-bullet {
  opacity: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #eeeeee;
}
.index_banner_swiper .swiper-pagination-bullet-active {
  background-color: transparent;
  border: 2px solid #eeeeee;
}
.index_headnews_swiper {
  width: 100%;
  height: 120px;
}
.index_headnews_swiper .swiper-pagination-bullet {
  opacity: 1;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #eeeeee;
}
.index_headnews_swiper .swiper-pagination-bullet-active {
  background-color: #ffaa39;
}
.index_headnews_swiper .swiper-pagination-bullets {
  bottom: 0;
}
.index_middle_swiper {
  width: 90%;
}
.index_middle_swiper .swiper-slide {
  height: 140px;
}
.index_middle_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease 0s;
}
.index_middle_swiper .swiper-slide img:hover {
  transform: scale(1.05);
}
.index_middle_swiper .swiper-button-prev,
.index_middle_swiper .swiper-button-next {
  width: 25px;
  height: 44px;
}
.index_middle_swiper-button-prev {
  background: url(../image/swiper_prev.png) no-repeat;
}
.index_middle_swiper-button-next {
  background: url(../image/swiper_next.png) no-repeat;
}
@media (max-width: 1400px) {
  .dom_wrap {
    width: 1400px;
  }
}
@media (max-width: 600px) {
  i,img,a{
    transition: all 0s !important;
  }
}

@media (min-width: 600px) {
  .index-left-img {
    background: url('../image/index-left-img-small.png') no-repeat;
    width: 49px;
    height: 139px;
    right: 0;
    z-index: 9999;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .index-left-img.cur {
    background: url('../image/index-left-img-big.png') no-repeat;
    width: 83px;
    height: 241px;
    right: 0;
    z-index: 9999;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .index-left-img a {
    display: inline-block;
    width: 100%;
    position: absolute;
    height: 120px;
  }
  
  .index-left-img.cur a {
    display: inline-block;
    width: 100%;
    position: absolute;
    height: 205px;
  }
  
  .index-left-close { 
    display: inline-block;
    text-align: center;
    position: absolute;
    bottom: 2px;
    cursor: pointer;
    width: 100%;
    height: 18px;
  }
  
  .index-left-close::after {
    width: 13px;
    height: 8px;
    content: '';
    position: absolute;
    top: 7px;
    left: 16px;
    background: url('../image/index-left-open.png') no-repeat;
  }
  
  .index-left-open {
    width: 100%;
    display: inline-block;
    text-align: center;
    position: absolute;
    bottom: 0px;
    cursor: pointer;
    color: #888;
    height: 33px;
    line-height: 33px;
    padding-right: 10px;
    font-size: 15px;
  }

  .index-left-open::after {
    width: 13px;
    height: 8px;
    content: '';
    position: absolute;
    top: 13px;
    right: 11px;
    background: url('../image/index-left-close.png') no-repeat;
  }

  

  .index-right-img {
    background: url('../image/index-right-img-small.png') no-repeat;
    width: 49px;
    height: 139px;
    left: 0;
    z-index: 9999;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .index-right-img.cur {
    background: url('../image/index-right-img-big.png') no-repeat;
    width: 83px;
    height: 241px;
    right: 0;
    z-index: 9999;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .index-right-img a {
    display: inline-block;
    width: 100%;
    position: absolute;
    height: 120px;
  }
  
  .index-right-img.cur a {
    display: inline-block;
    width: 100%;
    position: absolute;
    height: 205px;
  }
  
  .index-right-close { 
    display: inline-block;
    text-align: center;
    position: absolute;
    bottom: 2px;
    cursor: pointer;
    width: 100%;
    height: 18px;
  }
  
  .index-right-close::after {
    width: 13px;
    height: 8px;
    content: '';
    position: absolute;
    top: 7px;
    left: 16px;
    background: url('../image/index-left-close.png') no-repeat;
  }
  
  .index-right-open {
    width: 100%;
    display: inline-block;
    text-align: center;
    position: absolute;
    bottom: 0px;
    cursor: pointer;
    color: #888;
    height: 33px;
    line-height: 33px;
    padding-right: 10px;
    font-size: 15px;
  }

  .index-right-open::after {
    width: 13px;
    height: 8px;
    content: '';
    position: absolute;
    top: 13px;
    right: 11px;
    background: url('../image/index-left-open.png') no-repeat;
  }


  .index-left-img::after {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    top: 0%;
    width: 100%;
    height: 30px;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    overflow: hidden;
    /* transform: skewx(-40deg); */
    transition: 0s;
    animation: anim 3s ease-in-out infinite;
  }

  .index-right-img::after {
    content: "";
    display: block;
    position: absolute;
    right: 0px;
    top: 0%;
    width: 100%;
    height: 30px;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    overflow: hidden;
    /* transform: skewx(40deg); */
    transition: 0s;
    animation: anim 3s ease-in-out infinite;
  }

  @keyframes anim {
    0%{ top: 0%;}
    30%{ top: 70%;}
    100%{ top: 70%;}
  }
}


  
.nav_list_content {float: left;width: 116px; text-align: center;}

.nav_list_content > a {display: inline-block; width: 100%;font-size: 18px;color: #333333;}

.nav_list_content > a:hover {font-weight: bold;}

.nav_list_content_ul {background-color: rgba(255,255,255,0.8); display: none;position: relative;top: -0.04em;}

.nav_list_content_ul li {height: 45px;line-height: 45px;width: 100%;text-align: center;}

.nav_list_content_ul li a {display: inline-block;width: 100%;color: #333333;transition: .2s transform linear;}

.nav_list_content_ul li a:hover {  transform: scale(1.2); }
.nav_list_content:hover ul {
	margin-left: -25px;
	width:150%;
  display: block ;
}